home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / src / s / template.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-04  |  3.2 KB  |  98 lines

  1. /* Template for system description header files.
  2.    This file describes the parameters that system description files
  3.    should define or not.
  4.    Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Emacs.
  7.  
  8. GNU Emacs is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2, or (at your option)
  11. any later version.
  12.  
  13. GNU Emacs is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU Emacs; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* Synched up with: FSF 19.29. */
  23.  
  24. /*
  25.  *    Define symbols to identify the version of Unix this is.
  26.  *    Define all the symbols that apply correctly.
  27.  */
  28.  
  29. /* #define UNIPLUS */
  30. /* #define USG5 */
  31. /* #define USG */
  32. /* #define HPUX */
  33. /* #define UMAX */
  34. /* #define BSD4_1 */
  35. /* #define BSD4_2 */
  36. /* #define BSD4_3 */
  37. /* #define BSD */
  38. /* #define VMS */
  39.  
  40. /* SYSTEM_TYPE should indicate the kind of system you are using.
  41.  It sets the Lisp variable system-type.  */
  42.  
  43. #define SYSTEM_TYPE "berkeley-unix"
  44.  
  45. /* Letter to use in finding device name of first pty,
  46.   if system supports pty's.  'a' means it is /dev/ptya0  */
  47.  
  48. #define FIRST_PTY_LETTER 'a'
  49.  
  50. /*
  51.  *    Define HAVE_PTYS if the system supports pty devices.
  52.  */
  53.  
  54. #define HAVE_PTYS
  55.  
  56. /* If your system uses COFF (Common Object File Format) then define the
  57.    preprocessor symbol "COFF". */
  58.  
  59. /* #define COFF */
  60.  
  61. /* define MAIL_USE_FLOCK if the mailer uses flock
  62.    to interlock access to /usr/spool/mail/$USER.
  63.    The alternative is that a lock file named
  64.    /usr/spool/mail/$USER.lock.  */
  65.  
  66. #define MAIL_USE_FLOCK
  67.  
  68. /* If the character used to separate elements of the executable path
  69.    is not ':', #define this to be the appropriate character constant.  */
  70. /* #define SEPCHAR ':' */
  71.  
  72. /* ============================================================ */
  73.  
  74. /* Here, add any special hacks needed
  75.    to make Emacs work on this system.  For example,
  76.    you might define certain system call names that don't
  77.    exist on your system, or that do different things on
  78.    your system and must be used only through an encapsulation
  79.    (Which you should place, by convention, in sysdep.c).  */
  80.  
  81. /* Some compilers tend to put everything declared static
  82.    into the initialized data area, which becomes pure after dumping Emacs.
  83.    On these systems, you must #define static as nothing to foil this.
  84.    Note that emacs carefully avoids static vars inside functions.  */
  85.  
  86. /* #define static */
  87.  
  88. /* ============================================================ */
  89.  
  90. /* After adding support for a new system, modify the large case
  91.    statement in the `configure' script to recognize reasonable
  92.    configuration names, and add a description of the system to
  93.    `etc/MACHINES'.
  94.  
  95.    If you've just fixed a problem in an existing configuration file,
  96.    you should also check `etc/MACHINES' to make sure its descriptions
  97.    of known problems in that configuration should be updated.  */
  98.